home *** CD-ROM | disk | FTP | other *** search
/ Palm Utilities / Palm_Utilities_CD-ROM_2001_2001.iso / files / utils database / List 0.98 / listlite.exe / readme2.txt < prev   
Encoding:
Text File  |  2000-07-03  |  1.6 KB  |  59 lines

  1. ListDB Version 0.99
  2.  
  3. This is part of the List package.  It is also freeware and falls under
  4. the same conditions as the pilot application.
  5.  
  6. Command line options:
  7. -c : create a .pdb file from a .csv file
  8. example: listdb -c <output.pdb> <input.csv>
  9.  
  10. -x : extract a .csv file from a .pdb file
  11. example: listdb -x <input.pdb> <output.csv>
  12.  
  13. -p : create a copy protected .pdb file from a .csv file
  14. example: listdb -p <output.pdb> <input.csv>
  15.  
  16.  
  17. Input file format: CSV
  18.  
  19. First line of input file:
  20.  
  21. databasename,customfield1,customfield2,category1,category2,...
  22.  
  23. Every other line..
  24.  
  25. category,field1data,field2data,notedata
  26.  
  27. To put CR's into the notedata simply add the delimiter (,) wherever a
  28. CR is required.
  29.  
  30. See tests\test.csv for an example.
  31.  
  32.  
  33.  
  34. Example input file:
  35. ===cut===
  36. databasename,customfield1,customfield2,category1,category2
  37. category1,field1data,field2data,notedata
  38. ===cut===
  39.  
  40. Cut the text above and put the two lines into a normal text file.  For
  41. example use notepad to create the file test.txt with these two lines. 
  42. Then run the listdb program from a MsDOS command prompt:
  43.  
  44. listdb -c test.pdb test.txt
  45.  
  46. Then install the resulting test.pdb file.
  47.  
  48.  
  49.  
  50. Known Limitations:
  51.     This version is hard coded to support a maximum of 20,000 records.
  52.     Carriage returns in the first two fields are converted to
  53.         dashes when extracting a database.  Use the windows
  54.         version (WListDB) to work-around this limitation.
  55.     Empty Note fields are not possible, you always get a free CR.
  56.     Listdb is not very user-friendly, use WListDB instead, or maybe
  57.         one of the Perl scripts ;)
  58.     This file is lousy documentation.
  59.